82b43eb3b145adec52aec4d901bcd5780e9138ab,src/main/java/ru/org/linux/topic/TopicListController.java,TopicListController,galleryGroup,#HttpServletRequest#TopicListRequest#String#HttpServletResponse#,190
Before Change
@PathVariable("group") String groupName,
HttpServletResponse response
) throws Exception {
topicListForm.setSection(Section.SECTION_GALLERY);
return group(request, topicListForm, groupName, response);
}
After Change
@PathVariable("group") String groupName,
HttpServletResponse response
) throws Exception {
Section section = sectionService.getSection(Section.SECTION_GALLERY);
return group(section, request, topicListForm, groupName, response);
}